.product-header-container{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.product-header-img{
  width: 30%;
  margin-right: 1%;
}

@media (max-width: 768px){

    .product-header-container{
        flex-direction: column;
    }

    .product-header-img{
        width: 60%;
        margin-right: 0;
    }
}